home *** CD-ROM | disk | FTP | other *** search
/ Geek Games #12 / GEGA012.iso / Jogos de Azar / flash_poker.swf / scripts / frame_19 / DoAction.as
Text File  |  2006-01-17  |  261b  |  22 lines

  1. if(cardvalue < "14")
  2. {
  3.    suit = "1";
  4. }
  5. else if(CardValue < "27")
  6. {
  7.    Suit = "2";
  8. }
  9. else if(CardValue < "40")
  10. {
  11.    Suit = "3";
  12. }
  13. else if(CardValue < "53")
  14. {
  15.    Suit = "4";
  16. }
  17. else
  18. {
  19.    Suit = "5";
  20. }
  21. Card = CardValue - (Suit * "13" - "13");
  22.